home *** CD-ROM | disk | FTP | other *** search
/ Alde ADA 1: #1 / CCCC 8804 Volume 1 Number 1 - Alde.iso / C / MISC / LIB / DLIBSSRC.ARC / RAND.C < prev    next >
Encoding:
C/C++ Source or Header  |  1987-07-14  |  93 b   |  8 lines

  1. #include <stdio.h>
  2. #include <osbind.h>
  3.  
  4. rand()
  5. {
  6.     return((Random() >> 3) & 0x7FFF);
  7. }
  8.